home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / dosver.zip / DOSVER.DOC next >
Text File  |  1991-10-11  |  6KB  |  184 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.        
  8.        DOSVER.EXE
  9.        Copyright 1991 by Chuck Steenburgh
  10.        
  11.           Use this program to determine what version of DOS is currently
  12.        running on the system.
  13.        
  14.        Usage:       DOSVER [n.n]
  15.        
  16.                  [n.n]           optional version to check for
  17.        
  18.        Examples:
  19.        
  20.             DOSVER               returns an errorlevel based on
  21.                                  version of DOS currently loaded
  22.                                  
  23.             DOSVER 3.3           checks to see if DOS version 3.3,
  24.                                  or higher, is loaded
  25.                                  
  26.           DOSVER returns two possible errorlevel, based on whether
  27.        it is reporting the DOS version or checking for a specific
  28.        version number.
  29.        
  30.           When entered without parameters, DOSVER returns an error-
  31.        level according to the chart below:
  32.        
  33.                  DOS Version                Errorlevel Returned
  34.                  ===========                ===================
  35.                      5.00                            50
  36.                      4.01                            40
  37.                      3.3                             33
  38.                      3.21                            32
  39.                      .                               .
  40.                      .                               .
  41.                      2.0                             20
  42.                      etc.
  43.        
  44.           When entered with a version number on the command line,
  45.        DOSVER returns the following errorlevels:
  46.        
  47.                  Errorlevel                 Meaning
  48.                  ==========                 =======
  49.                       2                     Loaded DOS higher version
  50.                       1                     Loaded DOS same version
  51.                       0                     Loaded DOS lower version
  52.        
  53.        
  54.        DISCLAIMER
  55.        
  56.           The programs described in this documentation are guaran-
  57.        teed to absolutely nothing!  They have, however, in my exper-
  58.        ience performed essentially as described herein.  The author
  59.        will not be responsible for any loss or damages caused through
  60.        the use of these programs.
  61.  
  62.                                      Page 1
  63.  
  64.  
  65.  
  66.  
  67.  
  68.        
  69.           All trademarks are property of their respective owners.
  70.        
  71.           The programs and documentation are Copyright 1991 by Chuck
  72.        Steenburgh.  You are encouraged to distribute these programs
  73.        provided the following conditions are met:
  74.        
  75.           - all files in this archive must be distrib-
  76.             uted together in UNMODIFIED form
  77.        
  78.           - you charge no more than a reasonable fee for copying or
  79.             subscription, and clearly indicate that payment of such
  80.             a fee does NOT grant ownership of the programs.
  81.        
  82.           This program is part of set of utilities known as STEEN-
  83.        BURGH'S STUFF (Mildly Useful Utilities).  The full set of
  84.        utilities includes the following programs:
  85.        
  86.             BATBOX:     Simple menu creation/input system
  87.             CLK:        Displays time on screen
  88.             DOSVER:     Checks for DOS version currently loaded
  89.             FREEDISK:   Checks for available disk space
  90.             INPUT:      Simple prompt/input system
  91.             KLS:        Colorful screen-clearing utility
  92.             LAUNCHER:   File selection/execution system
  93.             MUSIC115:   Plays transcribed sheet music on the PC
  94.             RAND:       Random number generator
  95.             SKIP:       Prints blank lines from batch files
  96.             SOUNDER:    Wide range of noise making options
  97.             WAITFOR:    Timed pauses 
  98.             WHENISIT:   Date/time telling utility
  99.             WRITE:      Colorful output anywhere on screen
  100.             XD:         Create/switch directories at the same time
  101.        
  102.           Payment of the $10 registration fee allows automatically
  103.        registers you for the full set.
  104.        
  105.           You may evaluate these programs for up to 30 days on a free
  106.        trial basis.  After 30 days, you should register your use of
  107.        these programs.  The registration fee is $10, payable to the
  108.        author at the address given below.
  109.        
  110.           Let's be real: I don't plan to make alot of money this way.
  111.        Registration does have its advantages:
  112.        
  113.           - I am improving these programs all the time.  Registration
  114.             will get you IMMEDIATELY a disk with the latest version,
  115.             which includes a version of BATBOX with user-selected 
  116.             menu colors.  When Version 2.0 of these utilities is re-
  117.             leased, you will also receive that free of charge.
  118.        
  119.           - While I can't promise to include everyone's suggestions
  120.             in program updates, you can bet I'll listen to registered
  121.             users before any of you scrounges out there.
  122.  
  123.                                      Page 2
  124.  
  125.  
  126.  
  127.  
  128.  
  129.        
  130.           - You will me feel all warm and fuzzy and appreciated, and
  131.             all that good stuff.
  132.        
  133.           - You will also get an evaluation copy of my text-file for-
  134.             matting program (used to produce the margins in this doc-
  135.             ument).
  136.        
  137.           Send comments/registrations to:
  138.        
  139.                Chuck Steenburgh
  140.                304A North Main Street
  141.                Lexington, VA 24450
  142.                (703)464-5290
  143.        
  144.                CIS 72330,1776 (I haunt the IBMSYS and IBMPRO forums)
  145.        
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.                                      Page 3